.main {
    display: flex;
    width: 100%;
}

.content {
    display: flex;

}

.gallery {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 40vh;
    /*höhe der Gallery auf dem Homescreen*/
}

.gallery button img {
    display: flex;
    align-items: center;
    width: 100%;
}

.gallery:hover button {
    visibility: visible;
    opacity: 1;
}

.gallery .scroller {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: 100%;
}

.gallery .scroller::-webkit-scrollbar {
    display: none;
}

.gallery button {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: visibility 1s ease, opacity 1s ease;
    background: none;
    border: none;
}

.gallery button.previous {
    left: 1rem;
    width: 3rem;
    height: 3rem;
}

.gallery button.next {
    right: 1rem;
    width: 3rem;
    height: 3rem;

}

.gallery .scroller img {
    display: block;
    scroll-snap-align: start;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: 10%;
    /* bilder verschieben oben unten*/
}